home *** CD-ROM | disk | FTP | other *** search
/ MacWorld 1999 April / Macworld (1999-04).dmg / Cool Specials / Al Morale Demo / Al's Stuff / D200.DCR / 00163_4 Butt.ls < prev    next >
Encoding:
Text File  |  1999-02-16  |  497 b   |  27 lines

  1. on mouseDown
  2.   global gLSpecial
  3.   puppetSprite(11, 1)
  4.   if the optionDown then
  5.     set the memberNum of sprite 11 to 181
  6.     set gLSpecial to "L500"
  7.   else
  8.     set the memberNum of sprite 11 to 179
  9.     set gLSpecial to EMPTY
  10.   end if
  11.   set the ink of sprite 11 to 0
  12.   updateStage()
  13.   repeat while the stillDown
  14.   end repeat
  15. end
  16.  
  17. on mouseUp
  18.   global gLSpecial
  19.   puppetSprite(11, 0)
  20.   if gLSpecial <> "L500" then
  21.     PlayLaugh()
  22.   else
  23.     set name to string(gLSpecial)
  24.     go(1, name)
  25.   end if
  26. end
  27.